home *** CD-ROM | disk | FTP | other *** search
/ Business & Presentations / Business and Presentations - Volume 1 (1995)(Sideface)(NL).iso / hputils / djprnt / list.hpp < prev    next >
C/C++ Source or Header  |  1990-02-10  |  407b  |  28 lines

  1. /*
  2.     LIST.HPP
  3.     Copyright (c) Les Hancock 1990
  4. */
  5.  
  6. #ifndef LIST_HPP
  7. #define LIST_HPP
  8.  
  9. extern const char *default_name;
  10.  
  11. struct node
  12. {
  13.     node *next;
  14.     const char *string;
  15. };
  16.  
  17. class file_list
  18. {
  19.     static node *head;
  20.     node *make_a_node(const char *file_name);
  21. public:
  22.     file_list(void) { head = 0; }
  23.     const char *pop_file_name(void);
  24.     void push_file_name(const char *file_name);
  25. };
  26.  
  27. #endif
  28.